From 3f639e9079aa0b2e03189737dee78f79e3043d90 Mon Sep 17 00:00:00 2001 From: "emellor@leeni.uk.xensource.com" Date: Wed, 14 Dec 2005 12:22:24 +0000 Subject: [PATCH] HOSTCC should be used to set HOSTCFLAGS instead of CC. There is a case where HOSTCC doesn't accept -Wdeclaration-after-statement, while CC does. It results in a compilation error. This patch fixes it Signed-off-by: Isaku Yamahata --- Config.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Config.mk b/Config.mk index 4a85a103ed..6f48d6493c 100644 --- a/Config.mk +++ b/Config.mk @@ -38,10 +38,10 @@ EXTRA_INCLUDES += $(EXTRA_PREFIX)/include EXTRA_LIB += $(EXTRA_PREFIX)/$(LIBDIR) endif -test-gcc-flag = $(shell $(CC) -v --help 2>&1 | grep -q " $(1) " && echo $(1)) +test-gcc-flag = $(shell $(1) -v --help 2>&1 | grep -q " $(2) " && echo $(2)) -HOSTCFLAGS += $(call test-gcc-flag,-Wdeclaration-after-statement) -CFLAGS += $(call test-gcc-flag,-Wdeclaration-after-statement) +HOSTCFLAGS += $(call test-gcc-flag,$(HOSTCC),-Wdeclaration-after-statement) +CFLAGS += $(call test-gcc-flag,$(CC),-Wdeclaration-after-statement) LDFLAGS += $(foreach i, $(EXTRA_LIB), -L$(i)) CFLAGS += $(foreach i, $(EXTRA_INCLUDES), -I$(i)) -- 2.30.2